home *** CD-ROM | disk | FTP | other *** search
/ MacHack 1997 / MacHack 1997.toast / Hacks / Hacks ’97 / Warrior’s Progress / source code / Source / Libraries / Commands / Protocols / Creating.h < prev    next >
Encoding:
Text File  |  1997-06-28  |  237 b   |  18 lines  |  [TEXT/CWIE]

  1. // Creating.h
  2.  
  3. #ifndef Creating_h
  4. #define Creating_h
  5.  
  6. #ifndef ContextUser_h
  7. #include "ContextUser.h"
  8. #endif
  9.  
  10. class Creating: public ContextUser
  11.   {
  12.     public:
  13.         virtual bool CanCreate() const = 0;
  14.         virtual void Create() = 0;
  15.   };
  16.  
  17. #endif
  18.